xenstat: Remove the "vbd-%d-%d is a VBD." debugging statement.
authorKeir Fraser <keir@xensource.com>
Mon, 7 May 2007 12:52:50 +0000 (13:52 +0100)
committerKeir Fraser <keir@xensource.com>
Mon, 7 May 2007 12:52:50 +0000 (13:52 +0100)
Signed-off-by: Keir Fraser <keir@xensource.com>
tools/xenstat/libxenstat/src/xenstat_linux.c

index cc94dbadd39fb421c918fd494f6b6cede44a4a5a..2d442fb386dcc9f4a74b072a5f40bca69b9583fe 100644 (file)
@@ -206,10 +206,8 @@ int xenstat_collect_vbds(xenstat_node * node)
 
 
                ret = sscanf(dp->d_name, "vbd-%u-%u", &domid, &vbd.dev);
-               if (ret != 2) {
+               if (ret != 2)
                        continue;
-               }
-               printf("%s is VBD.\n",dp->d_name);
 
                domain = xenstat_node_domain(node, domid);
                if (domain == NULL) {